home *** CD-ROM | disk | FTP | other *** search
/ Palm Utilities / Palm_Utilities_CD-ROM_2001_2001.iso / files / utils hack / Stay Off If Up Hack 1.0 / upoffhack.exe / Makefile < prev    next >
Encoding:
Makefile  |  1999-11-16  |  814 b   |  32 lines

  1. # makefile for the GNU / gcc SDK.
  2.  
  3. upoffhack.prc: code03e8.bin TRAP03e8.bin  tAIN0bb8.bin tSTR0bb8.bin tver0001.bin
  4.     build-prc -t HACK upoffhack.prc 'Stay Off If Up Hack' upoh code03e8.bin TRAP03e8.bin tAIN0bb8.bin tFRM0bb8.bin tSTR0bb8.bin tver0001.bin
  5.  
  6. code03e8.bin: upoffhack
  7.     m68k-palmos-coff-obj-res upoffhack
  8.     mv code0001.upoffhack.grc code03e8.bin
  9.  
  10. ## pilrc bits
  11.  
  12. tAIN0bb8.bin: upoffhack.rcp
  13.     pilrc upoffhack.rcp
  14.  
  15. tFRM0bb8.bin: tAIN0bb8.bin
  16. tSTR0bb8.bin: tAIN0bb8.bin
  17. tver0001.bin: tAIN0bb8.bin
  18.  
  19. upoffhack: upoffhack.c
  20.     m68k-palmos-coff-gcc -O2 -nostartfiles upoffhack.c -o upoffhack
  21.  
  22. install: upoffhack.prc
  23.     pilot-xfer -i upoffhack.prc
  24.  
  25. clean: dist-clean
  26.     rm -f upoffhack.prc
  27.  
  28. dist-clean:
  29.     rm -f *.grc code*.bin upoffhack tAIN0bb8.bin tFRM0bb8.bin tSTR0bb8.bin tver0001.bin
  30.  
  31. dist: upoffhack.prc dist-clean
  32.